home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / share / acpi-support / IBM.config < prev    next >
Text File  |  2008-10-14  |  2KB  |  90 lines

  1. case "$model" in
  2.     # R40 
  3.     2681*|2682*|2683*|2892*|2893*|2896*|2898*|2899*)
  4.         ACPI_SLEEP=true;
  5.     ;;
  6.     # More R40
  7.     2722*|2723*|2724*|2897*)
  8.         ACPI_SLEEP=true;
  9.     ;;
  10.     # R50/p 
  11.     1829*|1830*|1831*|1832*|1833*|1836*|1840*|1841*)
  12.         ACPI_SLEEP=true;
  13.     ;;
  14.     # R50e 1834 - see LP: #40621, #211285
  15.     1834*)
  16.         ACPI_SLEEP=true;
  17.         SAVE_VIDEO_PCI_STATE=true;
  18.         SAVE_VBE_STATE=true;
  19.         POST_VIDEO=true;
  20.         ;;
  21.     1842*|2670*)
  22.         ACPI_SLEEP=true;
  23.         SAVE_VIDEO_PCI_STATE=true;
  24.         SAVE_VBE_STATE=false;
  25.         POST_VIDEO=false;
  26.         ;;
  27.     # R52 
  28.     1846*|1847*|1848*|1849*|1850*|1858*|1870*)
  29.         ACPI_SLEEP=true;
  30.     ;;
  31.     # T21
  32.     2647*|2648*)
  33.         ACPI_SLEEP=true;
  34.     ;;
  35.     # T23 - seems to have a different format
  36.     475S*)
  37.         ACPI_SLEEP=true;
  38.     ;;
  39.     # T40/T41/T42/p
  40.     2373*|2374*|2375*|2376*|2378*|2379*)
  41.         ACPI_SLEEP=true;
  42.     ;;
  43.     # T43 
  44.     1871*|1872*|1873*|1874*|1875*|1876*)    
  45.         ACPI_SLEEP=true;
  46.     ;;
  47.     #T43/p
  48.     2668*|2669*|2678*|2679*|2686*|2687*)
  49.         ACPI_SLEEP=true;
  50.     ;;
  51.     # X30
  52.     2672*)
  53.         ACPI_SLEEP=true;
  54.         SAVE_VBE_STATE=false;
  55.         # Don't switch backlights off without extra help
  56.         RADEON_LIGHT=true;
  57.     ;;
  58.     # more X30
  59.     2673*|2884*|2885*|2890*|2891*)
  60.         ACPI_SLEEP=true;
  61.         # Don't switch backlights off without extra help
  62.         RADEON_LIGHT=true;
  63.     ;;
  64.     # X40
  65.     2369*|2370*|2371*|2372*|2382*|2386*)
  66.         ACPI_SLEEP=true;
  67.     ;;
  68.     # X41
  69.     1864*|1865*|2525*|2526*|2527*|2528*)
  70.         ACPI_SLEEP=true;
  71.     ;;
  72.     # X41 Tablet 
  73.     1866*|1867*|1869*)
  74.         ACPI_SLEEP=true;
  75.     ;;
  76.     # Z60m (Intel graphics) 'ThinkPad Z60m'
  77.     2529*)    
  78.         ACPI_SLEEP=true;
  79.     ;;
  80.     # ThinkPad R40 with a product name of "_______" (yes, 7 blank spaces)
  81.     "")
  82.     case "$bios_version" in
  83.         # BIOS version for "ThinkPad R40 model 2722, 2723, 2724, 2897"
  84.         1PET53WW*)
  85.             ACPI_SLEEP=true
  86.         ;;
  87.     esac
  88.     ;;
  89. esac 
  90.